home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000346_news@newsmaster….columbia.edu _Wed Nov 25 09:46:37 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA17256
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 25 Nov 1998 09:46:36 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA23578
  7.     for kermit.misc@watsun; Wed, 25 Nov 1998 09:46:35 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: (no subject)
  12. Date: 25 Nov 1998 14:36:36 GMT
  13. Organization: Columbia University
  14. Lines: 25
  15. Message-ID: <73h4lk$d3s$1@apakabar.cc.columbia.edu>
  16. References: <73gapb$3n0@bgtnsc02.worldnet.att.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9553
  19.  
  20. In article <73gapb$3n0@bgtnsc02.worldnet.att.net>,
  21. Parthasar Suresh  <patsuresh@worldnet.att.net@postoffice.worldnet.att.net> wrote:
  22. : I am trying to write a script to automate file transfer from a HP UNIX 
  23. : host to a remote host (unknown). When I do this interactively everything 
  24. : works. I am able to dial in,make a connection to  the remote host. escape 
  25. : back to  my local c-kermit by doing Ctrl-\ and then c and then typing the 
  26. : receive command at the local c-kermit prompt to do the file transfer.I 
  27. : am  unable to do this in a script.
  28. : The remote  host prompts to escape  to  file transfer mode.
  29. : I do something like
  30. : out \28\99  <--- I amtrying to replicate escaping to local kermit by using 
  31. : the ascii characters for ctrl-\ and c.This does not work ?
  32. : I am  looking for help in replicating Ctrl-\ followedby a c in myscript.
  33. The manual, "Using C-Kermit", explains how to write scripts.  Special commands
  34. are required, which are documented there, along with numerous examples.  Very
  35. briefly: INPUT, OUTPUT, IF SUCCESS (or FAILURE) take the place of CONNECT and
  36. ^\c.  Please consult the manual for details:
  37.  
  38.   http://www.columbia.edu/kermit/ck60manual.html
  39.  
  40. - Frank